home *** CD-ROM | disk | FTP | other *** search
/ SGI Freeware 2002 November / SGI Freeware 2002 November - Disc 3.iso / dist / fw_qt3.idb / usr / freeware / Qt / extensions / Makefile.z / Makefile
Makefile  |  2002-04-08  |  459b  |  30 lines

  1. EXTENSIONS=xt nsplugin
  2.  
  3. EXAMPLES=\
  4.     nsplugin/examples/grapher \
  5.     nsplugin/examples/qtimage \
  6.     nsplugin/examples/trivial \
  7.     \
  8.     xt/examples/mainlyMotif \
  9.     xt/examples/mainlyQt \
  10.     xt/examples/mainlyXt \
  11.  
  12.  
  13. extensions:
  14.     for i in $(EXTENSIONS); do \
  15.         if ( cd $$i/src; $(MAKE) ); then \
  16.         true; \
  17.         else \
  18.         break; \
  19.         fi; \
  20.     done
  21.  
  22. examples:
  23.     for i in $(EXAMPLES); do \
  24.         if ( cd $$i; $(MAKE) ); then \
  25.         true; \
  26.         else \
  27.         break; \
  28.         fi; \
  29.     done
  30.